Conversion is a key element in SCOM composing. Vectors can become integers, integers can become symbols, and so on. In this respect cf-fourier, like cf-noise-white, provides a more specific facility than cfunction in enabling conversion and substitution.
(setq sym1 '(a b c d e f g h i j k l))
(cf-fourier
'(1 2 3) '(1 .5 (10 1 64)) '(0 45 90) 24 sym1)
=> (e e b a c c b e h g g j j h i k j i k l j j k h)
Here, a symbol-list called sym1 becomes a reference sequence for a conversion process, from symbols a to l generated via the the function gen-fourier, to a list of symbols between a and l that have been substituted in an appropriate quantitive sequence. In effect, all the vector to list to integer to symbol conversions take place automatically saving the composer inserting chains of conversion functions to achieve a result. The conversion and substitution process may also extend to lists of symbols within a reference sequence.
(cf-fourier
'(2 3 5 7) '(3 .5 ((1 2 3 5) 1 (50 70 64)))
'(0 45 90 135) '(7 11 13 17)
'((a b c d e f) (g h i j k l)))
=> ((d f c b f e a)
(k l k j h i k l k i g)
(d e f d a c b e f f c b a)
(j k l k j i g h i k k l k i i g h))
(cf-fourier
'((2 3) (5 7)) '(3 .5 ((3 5) 1 64))
'(90 135) '(12 13) '(a b c d e f g h i j k l))
=> ((l h c b e h k j e a c j) (l b g i a k d e j b h h b))
(cf-fourier
'((2 3 5 7) (5 3 2 1)) '(1 .5 (10 1 64))
'(0 45 90 135) 12 '(a b c d e f g h i j k l))
=> ((k h j h b e d l k e e a) (j l a f c e c d j e l f))